home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / bgfax160.zip / FD212.TXT < prev    next >
Text File  |  1996-05-18  |  3KB  |  107 lines

  1. --------------------------------------------------------------------------
  2. Setup hints for Class fax 2 modems, with FD 2.12/SW and 2.20/ML   07-14-95
  3. B.J. Guillot
  4. FidoNet 1:106/400                         InterNet: bjg90783@jetson.uh.edu
  5. --------------------------------------------------------------------------
  6.  
  7. FD 2.20/ML users must set: [FDSETUP] Modem -> Fax -> Internal = "NO".
  8.  
  9. If you need hints for FrontDoor and Class 2.0, see "FD-USR.TXT".
  10. If you need hints for FrontDoor and ZyXEL, see "FD-ZYXEL.TXT".
  11. If you need hints for FrontDoor and Class 1, see "FD-HAYES.TXT".
  12.  
  13. Please make sure the following two items are true before proceeding...
  14. (1) Your modem is NOT set to "Auto Answer" mode (REGISTER S0 MUST EQUAL 0)
  15. (2) You have already put all relevant DATA commands for the BBS into NVRAM
  16.  
  17. Note that, generally, fax (AT+F) commands CANNOT be stored in NVRAM.
  18.  
  19. Here is the relevant information from FDSETUP ...
  20.  
  21. [FDSETUP] Modem -> Default Settings -> Command Strings
  22.   Init-1 ... ATZ|
  23.   Init-2 ... AT+FCR=1;+FDCC=1,3,0,2,0,0,0,0|
  24.   Init-3 ... AT+FAA=1;+FLID="713 555 1212"|
  25.  
  26. ; atz                      automatically recalls data commands in NVRAM
  27. ; +fcr=1                   enables fax receiption
  28. ; +flid="713 555 1212"     sets FAX ID, up to 20 characters, QUOTES REQUIRED
  29. ;
  30. ; +fdcc=1,3,0,2,0,0,0,0    allow high res, 9600, 1D compression [recommended]
  31. ; +fdcc=1,5,0,2,0,0,0,0    enable high resolution, 14400, 1D compression
  32. ; +fdcc=1,5,0,2,1,0,0,0    enable high res, 14400, 1D and 2D compression
  33.  
  34. [FDSETUP] Modem -> Default Settings -> Answer control
  35.   Manual answer    Yes
  36.   Force answer ... ATA|
  37.   Answer delay ... 2
  38.  
  39. ; The Answer delay may need to be modified if you are using Caller ID.
  40.  
  41. [FDSETUP] Mailer -> Errorlevels
  42.   Fax ... 255
  43.  
  44. ==========================================================================
  45.  
  46. If you are using a modem that returns a "FAX" response ... [METHOD #1]
  47. (Modems such as the Supra and Zoom).
  48.  
  49. [FDSETUP] Modem -> Default Settings -> Connect Messages
  50.    Fax ... CONNECT FAX     <-- THIS IS WRONG
  51.    Fax ... FAX             <-- RIGHT, GOOD, OKAY
  52.  
  53. FDRUN.BAT should contain something similar to ...
  54.  
  55. @echo off
  56. c:
  57. cd\fd
  58. fd
  59. if errorlevel 255 goto fax 
  60. if errorlevel 103 maint.bat
  61. if errorlevel 102 toss.bat
  62. if errorlevel 101 local.bat
  63. if errorlevel 100 dobbs.bat
  64. goto end
  65. :fax
  66.   rem ---1 is for com1 and z is for zfax format
  67.   bgfax /fax c:\bgfax 1 z
  68.   fdrun.bat
  69. :end
  70.  
  71. ==========================================================================
  72.  
  73. If you are using a modem that returns a "+FCON" response ... [METHOD #2]
  74. (Modems such as the PPI, GVC, and Intel).
  75.  
  76. [FDSETUP] Modem -> Default Settings -> Connect Messages
  77.   Fax ... +FCON             <-- RIGHT
  78.   Fax ... CONNECT +FCON     <-- THIS IS *WRONG*
  79.  
  80. FDRUN.BAT should contain something similar to ...
  81.  
  82. @echo off
  83. c:
  84. cd\fd
  85. fd
  86. if errorlevel 255 goto fax
  87. if errorlevel 103 maint.bat
  88. if errorlevel 102 toss.bat
  89. if errorlevel 101 local.bat
  90. if errorlevel 100 dobbs.bat
  91. goto end
  92. :fax
  93.   rem ---1 is for com1 and z is for zfax format
  94.   bgfax /fast:4 c:\bgfax 1 z
  95.   rem ---if /fast:4 gives you trouble, try using /fcon
  96.   fdrun.bat
  97. :end
  98.  
  99. ==========================================================================
  100.  
  101. See BGFAX.DOC for a detailed description of the differences between
  102. /FAX, /FAST, /FAST:nn and /FCON.
  103.  
  104. Regards,
  105. B.J. Guillot
  106.  
  107.